home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutord.EXE
/
OP.C
< prev
next >
Wrap
Text File
|
1992-02-15
|
159b
|
14 lines
main()
{
int a=10, b=20, c;
c = a + b;
printf("c is %d\n",c);
/*c = a--b;
printf("c is %d\n",c);*/
c = a- -b;
printf("c is %d\n",c);
}